ad0ac5ec0ec2e93de090bf91625f608990104d7f,src/net/java/sip/communicator/impl/gui/main/menus/ToolsMenu.java,ToolsMenu,registerMenuItems,#,339
Before Change
conferenceMenuItem
= new JMenuItem(
r.getI18NString("service.gui.CREATE_CONFERENCE_CALL"));
conferenceMenuItem.setMnemonic(
r.getI18nMnemonic("service.gui.CREATE_CONFERENCE_CALL"));
conferenceMenuItem.setName("conference");
conferenceMenuItem.addActionListener(this);
add(conferenceMenuItem);
// Add a service listener in order to be notified when a new protocol
// provider is added or removed and the list should be refreshed.
After Change
= cfg.getBoolean(CONFERENCE_CALL_DISABLED_PROP,
false);
if(!showConferenceMenuItemProp.booleanValue())
{
conferenceMenuItem
= new JMenuItem(
r.getI18NString("service.gui.CREATE_CONFERENCE_CALL"));
conferenceMenuItem.setMnemonic(
r.getI18nMnemonic("service.gui.CREATE_CONFERENCE_CALL"));
conferenceMenuItem.setName("conference");
conferenceMenuItem.addActionListener(this);
add(conferenceMenuItem);
}
// Add a service listener in order to be notified when a new protocol